Enable / Disable remembering the last selected country
by default, Every last country set by the user will be saved for the next use until the user will change it again.
You can change the behavior so it will reset the selected country every time the app is open with the following.
- 1- Open the
config.dartfile. - 2- Search for this:
/config/config.dart
static const bool shouldRememberLastCountrySelected = true;
- 3- Change
truetofalse:
/config/config.dart
static const bool shouldRememberLastCountrySelected = false;